home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / ms_dos / gds / source / gds109.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-08  |  360 b   |  21 lines

  1.  
  2. /*
  3.  *
  4.  *    GDS109 : 表示ペ-ジの指定
  5.  *
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <dos.h>
  10.  
  11. unsigned int GDS_display_page(unsigned char page) {
  12.    union  REGS  inregs, outregs;
  13.    struct SREGS segregs;
  14.  
  15.    segread(&segregs);
  16.    inregs.h.ah=0x8A;
  17.    inregs.h.al=page;
  18.    int86x(0x92,&inregs,&outregs,&segregs);
  19.    return (unsigned int)outregs.h.ah;
  20. }
  21.